home *** CD-ROM | disk | FTP | other *** search
XSetup plugin | 1999-09-08 | 1.1 KB | 47 lines |
- "FILE"="Xteq Systems X-Setup Plugin 5.0"
- "TYPE"="1"
- "COUNT"="2"
- "UIPATH"="System\Information"
- "NAME"="Microsoft Plus! Check"
- "VERSION"="1.15"
- "LANGUAGE"="VBScript"
- "TEXT 1"="Plus! 95"
- "TEXT 2"="Plus! 98"
- "DESCRIPTION 1"="This plug-in displays if Plus! is installed or not."
- "DESCRIPTION 2"="You can't change anything!!!"
- "AUTHOR"="Xteq Systems"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
- "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@xteq.com."
- "COMMENT 2"="Thanks to CptSiskoX for his help!"
-
-
-
- sV1="HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall\Plus!\DisplayName"
- sV1_C="Microsoft« Plus! for Windows« 95"
- sV2="HKLM\Software\Microsoft\Plus!98\Setup\Installed"
-
-
- Sub Plugin_Initialize
- sT="Not installed"
- s=RegReadValue(sv1)
- If s=sV1_C then sT="Detected"
- Call SetUIElement(1,sT)
-
- sT="Not installed"
- s=RegReadValue(sv2)
- If s="1" then sT="Detected"
- Call SetUIElement(2,sT)
-
-
- Call Disable 'user can't change anything!
- End Sub
-
- Sub Plugin_CheckData(ElementIndex)
- End Sub
-
- Sub Plugin_Apply(ElementIndex,ElementSubIndex)
- End Sub
-
- Sub Plugin_Terminate
- End Sub
-